home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if () == (%1) goto NO_ARG
- cls
- echo ******** ATI Technologies Windows 3.0 Drivers ********
- echo .
- echo This batch file will conveniently extract all of the Windows drivers
- echo to a diskette. This will enable you to use the Windows SETUP program
- echo to install the drivers. NOTE: It is *NOT* necessary to re-install
- echo Windows to install the drivers.
- echo .
- echo Please ensure that you have a blank/formatted
- echo diskette ready before you continue.
- echo .
- pause
- if (a:) == (%1) goto FDISK
- if (b:) == (%1) goto FDISK
- echo ERROR: Invalid drive specified.
- echo You must use drive A: or B:
- goto DONE
-
- :FDISK
- cls
- echo Please insert a blank diskette into the drive you specified.
- echo If you do not have a diskette ready, press Ctrl-C to abort.
- pause
- windrv %1
- echo .
- echo The Windows driver diskette has been successfully created!
- echo .
- echo Please read the README.WIN file on the diskette for further
- echo installation instructions.
- echo .
- goto DONE
-
- :NO_ARG
- echo .
- echo This batch file needs to know what drive
- echo you wish to install the files on.
- echo The drivers MUST be copied to diskette.
- echo .
- echo ┌─────────────────────────┐
- echo │ Usage: INSTALL [drive]: │
- echo └─────────────────────────┘
- echo .
- echo Example: INSTALL A:
-
- :DONE
- echo
-